equals
Compares a value to one of typeMRJOSType
or an integer.
public final boolean equals (MRJOSType type); public final boolean equals (int type);
type
- The value to compare against.
- method result
- True if the value matches what you compared it against, false otherwise.
DISCUSSION
For example, if you received an MRJ OS type in the variablemyType
, then
myType.equals(new MRJOSType ("TEXT")) ;is true if the MRJ OS type is of type'TEXT'
.